home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / wbgames / amilights / install boopsi classes / workbench2.1+ / install.installer < prev    next >
Text File  |  1996-03-17  |  3KB  |  126 lines

  1. (set copying        "Copying class to ")
  2. (set classdest        "sys:classes")
  3. (set imagedest        "sys:classes/images")
  4. (set gadgetdest        "sys:classes/gadgets")
  5.  
  6. (set winclass-s        "//classes/window.class")
  7. (set winclass-d        "window.class")
  8.  
  9. (set bevel-s        "//classes/images/bevel.image")
  10. (set bevel-d        "bevel.image")
  11.  
  12. (set drawlist-s        "//classes/images/drawlist.image")
  13. (set drawlist-d        "drawlist.image")
  14.  
  15. (set glyph-s        "//classes/images/glyph.image")
  16. (set glyph-d        "glyph.image")
  17.  
  18. (set label-s        "//classes/images/label.image")
  19. (set label-d        "label.image")
  20.  
  21. (set button-s        "//classes/gadgets/button.gadget")
  22. (set button-d        "button.gadget")
  23.  
  24. (set layout-s        "//classes/gadgets/layout.gadget")
  25. (set layout-d        "layout.gadget")
  26.  
  27.  
  28. ;***************************************************************************
  29. ; English strings
  30. ;
  31. ; Translation: Native
  32. ;***************************************************************************
  33.  
  34. (set default_lang 1)
  35. (set oldlevel @user-level)
  36.  
  37. (set wrongkickstart    "amiLights requires at least Kickstart 2.04")
  38.  
  39. ;***************************************************************************
  40. ; Make sure we are running under a 2.04 ROM
  41. ;***************************************************************************
  42.  
  43. (complete 0)
  44.  
  45. (if (< (/ (getversion) 65536) 37)
  46. (
  47.     (abort wrongkickstart)
  48. ))
  49.  
  50.  
  51. ; Copy classes
  52. ;
  53.  
  54. (copylib
  55.     (prompt (cat copying (tackon classdest winclass-d) "..."))
  56.     (help    @copylib-help)
  57.     (source winclass-s)
  58.     (dest classdest)
  59.     (newname winclass-d)
  60.     (confirm)
  61. )
  62. (complete 10)
  63.  
  64. (copylib
  65.     (prompt (cat copying (tackon imagedest bevel-d) "..."))
  66.     (help    @copylib-help)
  67.     (source bevel-s)
  68.     (dest imagedest)
  69.     (newname bevel-d)
  70.     (confirm)
  71. )
  72. (complete 20)
  73.  
  74. (copylib
  75.     (prompt (cat copying (tackon imagedest drawlist-d) "..."))
  76.     (help    @copylib-help)
  77.     (source drawlist-s)
  78.     (dest imagedest)
  79.     (newname drawlist-d)
  80.     (confirm)
  81. )
  82. (complete 30)
  83.  
  84. (copylib
  85.     (prompt (cat copying (tackon imagedest glyph-d) "..."))
  86.     (help    @copylib-help)
  87.     (source glyph-s)
  88.     (dest imagedest)
  89.     (newname glyph-d)
  90.     (confirm)
  91. )
  92. (complete 40)
  93.  
  94. (copylib
  95.     (prompt (cat copying (tackon imagedest label-d) "..."))
  96.     (help    @copylib-help)
  97.     (source label-s)
  98.     (dest imagedest)
  99.     (newname label-d)
  100.     (confirm)
  101. )
  102. (complete 50)
  103.  
  104.  
  105. (copylib
  106.     (prompt (cat copying (tackon gadgetdest button-d) "..."))
  107.     (help    @copylib-help)
  108.     (source button-s)
  109.     (dest gadgetdest)
  110.     (newname button-d)
  111.     (confirm)
  112. )
  113. (complete 70)
  114.  
  115.  
  116. (copylib
  117.     (prompt (cat copying (tackon gadgetdest layout-d) "..."))
  118.     (help    @copylib-help)
  119.     (source layout-s)
  120.     (dest gadgetdest)
  121.     (newname layout-d)
  122.     (confirm)
  123. )
  124. (complete 100)
  125.  
  126.